home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Win '95 Giga Pack
/
Win95 Giga Pack (Maple Media) (1997).iso
/
UTILITY
/
WNBT32
/
WAV.MN_
< prev
next >
Wrap
Text File
|
1995-08-17
|
369b
|
14 lines
Play this Wave File
filename = CurrentFile()
PlayWaveForm( filename, 1)
Play all selected Wave File(s)
waves=FileItemize("")
count=ItemCount(waves,@tab)
for i=1 to count
wf=ItemExtract(i,waves,@tab)
wfe=strupper(FileExtension(wf))
if wfe!="WAV" then continue
PlayWaveForm(wf,0)
next